|
Generic Chess
Game hierarchy
• Game
• Generic Chess
Piece Types
Internal Name | Name | Notation | Added By | Notes |
King | King | K | | |
Pawn | Pawn | P | | |
Game Variables
From Game:
Name = string
Invented = string
InventedBy = string
NumberOfSquareColors = integer FENFormat = string
FENStart = string
Array = string
DeduplicateMoves = boolean
StaticExchangeEvaluation = boolean
From Generic Chess:
StalemateResult = choice of { Draw, Win, Loss } (default: Draw)
PromotionRule = choice of { None, Standard, Replacement, Custom } (default: Standard)
PromotionTypes = string
BareKing = boolean (default: false)
EnPassant = boolean (default: true)
PromotingType = PieceType (default: Pawn)
CastlingType = PieceType (default: King)
| |